home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-04-03 | 1.5 KB | 87 lines | [TEXT/PJMM] |
- { This file has been processed by The THINK Pascal Source Converter, v1.1. }
-
- {
- Created: Sunday, January 6, 1991 at 11:20 PM
- Start.p
- Pascal Interface to the Macintosh Libraries
-
- Copyright Apple Computer, Inc. 1987-1990
- All rights reserved
- }
-
-
- {$IFC UNDEFINED UsingIncludes}
- {$SETC UsingIncludes := 0}
- {$ENDC}
-
-
- UNIT Start;
- INTERFACE USES Types;
-
-
-
-
-
-
-
-
-
-
-
-
-
- TYPE
- DefStartType = (slotDev,scsiDev);
-
-
- DefStartPtr = ^DefStartRec;
- DefStartRec = RECORD
- CASE DefStartType OF
- slotDev:
- (sdExtDevID: SignedByte;
- sdPartition: SignedByte;
- sdSlotNum: SignedByte;
- sdSRsrcID: SignedByte);
- scsiDev:
- (sdReserved1: SignedByte;
- sdReserved2: SignedByte;
- sdRefNum: INTEGER);
- END;
-
- DefVideoPtr = ^DefVideoRec;
- DefVideoRec = RECORD
- sdSlot: SignedByte;
- sdsResource: SignedByte;
- END;
-
- DefOSPtr = ^DefOSRec;
- DefOSRec = RECORD
- sdReserved: SignedByte;
- sdOSType: SignedByte;
- END;
-
-
- PROCEDURE GetDefaultStartup(paramBlock: DefStartPtr);
- INLINE $205F,$A07D;
- PROCEDURE SetDefaultStartup(paramBlock: DefStartPtr);
- INLINE $205F,$A07E;
- PROCEDURE GetVideoDefault(paramBlock: DefVideoPtr);
- INLINE $205F,$A080;
- PROCEDURE SetVideoDefault(paramBlock: DefVideoPtr);
- INLINE $205F,$A081;
- PROCEDURE GetOSDefault(paramBlock: DefOSPtr);
- INLINE $205F,$A084;
- PROCEDURE SetOSDefault(paramBlock: DefOSPtr);
- INLINE $205F,$A083;
- PROCEDURE SetTimeout(count: INTEGER);
- PROCEDURE GetTimeout(VAR count: INTEGER);
-
-
- { UsingStart }
-
-
- IMPLEMENTATION
- END.
-
-
-